home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 25
/
AACD 25.iso
/
AACD
/
Magazine
/
Online
/
QMail
/
source
/
auto_qmail.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-09-29
|
270 b
|
15 lines
#include "auto_qmail.h"
#include <sys/types.h>
#include <pwd.h>
char *auto_qmail_dir (void)
{
struct passwd *pwdent;
if ((pwdent = getpwnam ("qmails")))
return (pwdent->pw_dir);
else
/* Return something that will cause failure. */
return ("NIL:");
}